From f8dedc9d8ca0bd026e23c34d980daa8c5367b490 Mon Sep 17 00:00:00 2001 From: Gerd Moellmann Date: Mon, 13 Nov 2000 13:35:52 +0000 Subject: [PATCH] (show_help_echo): Call message3_nolog with number of bytes in the help string as 2nd parameter, instead of the number of characters. --- src/keyboard.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/keyboard.c b/src/keyboard.c index b086ae57ca6..a8472f2318b 100644 --- a/src/keyboard.c +++ b/src/keyboard.c @@ -2001,7 +2001,7 @@ show_help_echo (help, window, object, pos, ok_to_overwrite_keystroke_echo) { int count = specpdl_ptr - specpdl; specbind (Qmessage_truncate_lines, Qt); - message3_nolog (help, XSTRING (help)->size, + message3_nolog (help, STRING_BYTES (XSTRING (help)), STRING_MULTIBYTE (help)); unbind_to (count, Qnil); } -- 2.30.2